The "FMS Configuration" (FmsConfig) data group is used to bi-directionally transfer meter configuration between a field device and FMS.
The "FMS Configuration" data group depends on one or more support data groups for its data. Support data groups are found in the supportDg section of your sample template. Mapping between "FMS Configuration" data group elements and FMS data items is within the configItems section of fmsMaps in the device template file. Optional data groups can be used to get similar data for different meter types. See also FMS Configuration Items.
Example
The configuration for an orifice meter is found in the MeterOrif data group and the configuration for a turbine meter is found in the MeterTurb data group. For any given meter run, only one of these data groups is configured. For a turbine meter run, the MeterTurb data group is configured, but the MeterOrif data group is not, so only data from the MeterTurb data group is sent to the EFM service.
If you add an "FMS Configuration" data group and need to send periodic quality from FMS to a field device, your template requires a special supportDgSendGq element in addition to the supportDg element. The supportDgSendGq section must include at least one support data group. Ensure that the support data group references a writable data group that represents periodic quality configuration.
FMS data group units displayed in the DDS reflect their point of origin. If the value was received from an RTU, the units that originated at the RTU are displayed. If the value is received from the FMS, the units received from the FMS are displayed. To determine where units originated from, see transactions in the Transaction drop-down menu of the DDS editor for a specific FMS data group. If an FMS data group transaction is marked Get, the units are from the field device. If an FMS data group transaction is marked Send, the units are from the FMS.
For more information, see the following subsections:
For more information about working with device template files, see Device Template Files.
|
<FmsConfig niceName="FMS Configuration" baseOrd="1" maxCnt="4"> <dgElements/> <supportDg required="false"> <StPrmS/> <StPrmU/> <FixedInfo/> <FixedDev/> <Gas/> </supportDg> <supportDgSendGq required="true"> <Gas/> </supportDgSendGq> </FmsConfig> |
|
<!-- Requires at least one support data group. Support data groups are user configurable for this EIE. Exactly what support data group(s) you choose depends on your unique setup and needs. --> <FmsConfig niceName="FMS Configuration"> <dgElements/> <supportDg required="false"> <SupportDataGroup/> </supportDg> <supportDgSendGq required="true"> <SupportDataGroup/> </supportDgSendGq> </FmsConfig> |